The default case is not the last statement in this switch statement. For the sake of readability, you might want to move it to the end of the statement.
Loading history...
8
case "none":
9
return;
10
case "del":
11
action = "delete";
12
break;
13
case "new":
14
window.location = "group_new.php";
15
break;
16
}
17
var selected_rows = $('#group_table tr.selected');